projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
908d6b8
)
(rmail-edit-map): Inherit properly from text-mode-map;
author
Richard M. Stallman
<rms@gnu.org>
Tue, 20 Jul 1993 05:21:25 +0000
(
05:21
+0000)
committer
Richard M. Stallman
<rms@gnu.org>
Tue, 20 Jul 1993 05:21:25 +0000
(
05:21
+0000)
use the whole thing, not its cdr.
lisp/mail/rmailedit.el
patch
|
blob
|
history
diff --git
a/lisp/mail/rmailedit.el
b/lisp/mail/rmailedit.el
index 86e0f251f2bd92b2e7eda8cefd2ecbcc66923bb0..c6c355a5a8ae86bece5bf603f79444b75abaeaf0 100644
(file)
--- a/
lisp/mail/rmailedit.el
+++ b/
lisp/mail/rmailedit.el
@@
-28,7
+28,8
@@
(defvar rmail-edit-map nil)
(if rmail-edit-map
nil
- (setq rmail-edit-map (nconc (make-sparse-keymap) (cdr text-mode-map)))
+ ;; Make a keymap that inherits text-mode-map.
+ (setq rmail-edit-map (nconc (make-sparse-keymap) text-mode-map))
(define-key rmail-edit-map "\C-c\C-c" 'rmail-cease-edit)
(define-key rmail-edit-map "\C-c\C-]" 'rmail-abort-edit))